ocr: Gonstructors Employee public Employee (float sal, String fName, String 1Name) This constructor is used to create a new employee and assign him an initial salary. It does not verify that salary is less than the company's maximum salary. You could use this method as follows: Employee Emp = new Employee (35000f, "Mike", "Cohn"); Parameters: sal - The starting salary of the new employee. fName - The employee's first name. 1Name - The employee's last name.